/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}


body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    /* background: #050813; */
    color: #f8f9fa;
}




/*====== Top bar ==================*/
.k-topbar {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.k-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.k-logo-font{
   font-family: 'Cinzel', serif;
font-weight: 700;
letter-spacing: 2px;
}

/* Search */
.k-search-wrap {
    position: relative;
}

.k-search-input {
    border-radius: 999px;
    padding-left: 2.2rem;
    border: 1px solid #ddd;
    height: 44px;
    font-size: .92rem;
}

.k-search-input:focus {
    box-shadow: none;
    border-color: #ff6b00;
}

.k-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* Menu bar */
.k-navmenu {
    background: #f5f5f5;
    padding-top: 0;
    padding-bottom: 0;
}

.k-nav-links .nav-link {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: #333 !important;
    padding: .75rem 1rem;
}

.k-nav-links .nav-link:hover,
.k-nav-links .show>.nav-link {
    color: #d40000 !important;
}

/* Mobile */
@media (max-width: 992px) {
    .k-topbar .container-fluid {
        padding-inline: .75rem;
    }

    .k-search-input {
        margin-top: .35rem;
        height: 40px;
    }

    .k-navmenu {
        padding: .25rem .75rem;
    }

    .k-nav-links .nav-link {
        padding: .45rem 0;
    }
}




/*======================= Hero ========================*/
#hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* VIDEO */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: 100% 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 8, 19, .9), rgba(5, 8, 19, .4), rgba(5, 8, 19, .9));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(0, 0, 0, .35);
    font-size: .78rem;
}

.hero-title {
    /*font-size: clamp(2.4rem, 5vw, 3.5rem);*/
font-family: 'Cinzel', serif;
font-weight: 700;

}

.hero-sub {
    font-size: clamp(1rem, 2.4vw, 1.25rem);
    color: #dde4ff;
}



/* Search bar */
.k-search-bar {
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 10px;
}

.k-search-item {
    flex: 1 1 180px;
    border-right: 1px solid #e5e5e5;
    padding-inline: 12px;
}

.k-search-item:last-child {
    border-right: none;
}

.k-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #999;
    margin-bottom: 0;
}

.k-field {
    border: none;
    padding: 0;
    font-size: .95rem;
    height: auto;
    box-shadow: none;
}

.k-field:focus {
    outline: none;
    box-shadow: none;
}

.k-dropdown-btn {
    border: none;
    background: transparent;
    padding: 0;
    font-size: .95rem;
    text-align: left;
}

.k-dropdown-btn:focus {
    box-shadow: none;
}

.k-dropdown-btn:hover {
    background: transparent;    
    color:#000;
}

.k-main-search-btn {
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.05rem;
    padding-block: .6rem;
}

.k-search-btn-wrap {
    flex: 0 0 130px;
}

/* mobile */
@media (max-width: 992px) {
    .k-search-bar {
        border-radius: 18px;
        padding: 10px;
    }

    .k-search-item {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-inline: 4px;
        padding-bottom: 6px;
        padding-top: 6px;
    }

    .k-search-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .k-search-btn-wrap {
        flex: 1 1 100%;
        padding-top: 6px;
    }
}



/* ==== Section background (red festival look) ==== */
.k-deals-section {
    background: radial-gradient(circle at top, #ff8656 0, #e4331f 35%, #b0101d 75%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Title */
.k-deals-title {
    font-family: "Segoe UI", system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* ==== Carousel layout ==== */
.k-deals-viewport {
    overflow: hidden;
    /* सिर्फ visible area दिखे */
    padding: 10px 0;
}

.k-deals-track {
    display: flex;
    gap: 16px;
    transition: transform .4s ease;
    /* slide animation */
}

/* Single card */
.k-deal-card {
    position: relative;
    flex: 0 0 260px;
    /* एक card की width */
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .45);
}

.k-deal-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    filter: brightness(.85);
}

.k-deal-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, .1));
}

/* ==== Arrows ==== */
.k-deals-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .5);
    z-index: 5;
}

.k-deals-prev {
    left: 10px;
}

.k-deals-next {
    right: 10px;
}

.k-deals-arrow i {
    font-size: 1.1rem;
}

/* Hover effect card */
.k-deal-card:hover .k-deal-image {
    transform: scale(1.03);
    transition: transform .25s ease;
}

/* ===== Responsive: mobile पर 1–2 card दिखाई दें ===== */
@media (max-width: 992px) {
    .k-deal-card {
        flex: 0 0 70vw;
        /* screen width के हिसाब से */
    }

    .k-deals-prev {
        left: 4px;
    }

    .k-deals-next {
        right: 4px;
    }
}

@media (max-width: 576px) {
    .k-deal-card {
        flex: 0 0 80vw;
    }
}




/* Trending Destinations */
.trending-section {
    background: #ffffff;
}

.destination-card {
    position: relative;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .15));
}

.destination-card:hover {
    transform: translateY(-6px);
}

.destination-card .overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: #fff;
    z-index: 2;
}

.destination-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.destination-card p {
    font-size: 13px;
    margin-bottom: 2px;
}

.destination-card span {
    font-size: 12px;
    opacity: .9;
}






/* ================= SECTION ================= */
.holiday-section {
    margin-top: 40px;
}

/* ARROW BUTTONS */
.slider-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
}

.arrow-btn.active {
    border-color: #000;
}

/* ================= BANNER ================= */
.holiday-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* IMAGE */
.banner-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* DARK OVERLAY */
.holiday-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.45));
}

/* CENTER CONTENT */
.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* TITLE */
.banner-overlay h1 {
    font-size: 58px;
    font-weight: 600;
    text-shadow: 0 3px 10px rgba(0, 0, 0, .4);
}

/* DATE BADGE */
.date-badge {
    margin-top: 10px;
    background: #e53935;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* ================= BOTTOM STRIP ================= */
.bottom-strip {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px;
    background: rgba(0, 90, 140, 0.9);
    color: #fff;
    text-align: center;
    font-size: 15px;
    z-index: 3;
}






/* ================= FLY FROM YOUR CITY SECTION ================= */
.fly-section {
    background: #fff;
    color: #333;
}

/* Arrow buttons */
.nav-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #f1f1f1;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.arrow-btn:hover {
    background: #f2f2f2;
}

/* City Card */
.city-card {
    background: #f8f8f8;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    padding: 12px;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}

.city-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Image */
.city-card img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

/* Content */
.card-content h5 {
    font-weight: 700;
    margin: 3px 0;
}

.card-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.price-text {
    font-size: 13px;
    font-weight: 600;
}





/* ================= LEGACY SECTION ================= */
.legacy-section {
    background: #fff;
    color: #000;
}

.legacy-box {
    padding: 20px 10px;
}

.legacy-box .icon {
    font-size: 40px;
    color: #ff3d3d;
    margin-bottom: 10px;
}

.legacy-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.legacy-box p {
    font-size: 15px;
    color: #555;
    margin: 0;
}




/* ================== Speciality Tours Styling ================== */

/* Card container */
.special-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;

}

/* Card image */
.special-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover zoom effect */
.special-card:hover img {
    transform: scale(1.08);
}

/* Title text on image */
.special-card .card-title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

/* ================== SLIDER ARROW BUTTONS ================== */

/* Arrow container */
.speciality-nav {
    display: flex;
    gap: 10px;
}

/* Common style for both arrows */
.speciality-prev,
.speciality-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
}

/* Remove default swiper arrow icons */
.speciality-prev::after,
.speciality-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* Hover effect */
.speciality-prev:hover,
.speciality-next:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Position fix (Swiper default absolute hatao) */
.speciality-prev,
.speciality-next {
    position: static;
}


/* Responsive height */
@media(max-width:768px) {
    .special-card {
        height: 220px;
    }
}




/* ================= Adventure Section ================= */

/* Red gradient background wrapper */
.adventure-wrapper {
    background: linear-gradient(135deg, #e11c22, #8b0000);
    border-radius: 18px;
    padding: 40px;
}

/* White cards */
.adventure-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    height: 100%;
    transition: 0.3s ease;
}

/* Card hover effect */
.adventure-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Card image */
.adventure-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

/* Card heading */
.adventure-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

/* Card paragraph */
.adventure-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Explore link */
.adventure-card a {
    color: #e11c22;
    font-weight: 600;
    text-decoration: none;
}

/* Explore hover */
.adventure-card a:hover {
    text-decoration: underline;
}

/* Responsive padding */
@media (max-width: 768px) {
    .adventure-wrapper {
        padding: 25px;
    }
}




/* ================= Kesari Spotlight ================= */

.spotlight-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 14px;
    overflow: hidden;
    padding: 25px;
    height: 100%;
    color: #fff;
}

/* Left text content */
.spotlight-content {
    width: 60%;
}

.spotlight-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.spotlight-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* View More button */
.spotlight-btn {
    background: #fff;
    color: #000;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* Right image */
.spotlight-img {
    width: 38%;
}

.spotlight-img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 70px 0 0 70px;
}

/* Individual card gradients */
.deals-card {
    background: linear-gradient(135deg, #7a4a12, #d2a11c);
}

.europe-card {
    background: linear-gradient(135deg, #1b355c, #17b3b3);
}

.australia-card {
    background: linear-gradient(135deg, #0b5f3c, #1fd65b);
}

/* Responsive */
@media (max-width: 768px) {
    .spotlight-card {
        flex-direction: column;
        text-align: center;
    }

    .spotlight-content,
    .spotlight-img {
        width: 100%;
    }

    .spotlight-img img {
        border-radius: 12px;
        margin-top: 15px;
    }
}



/* ================= Season's Top Destinations ================= */
.season-section{
    padding:60px 0;
    background:#f8f9fa;
}

.season-text h2{
    font-size:clamp(1.8rem, 4vw, 2.8rem);
    font-weight:700;
    line-height:1.2;
    margin-bottom:12px;
}
.season-text h2 span{
    background:linear-gradient(120deg,#ff6b35,#f7931e);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.season-text p{
    color:#6c757d;
    font-size:1rem;
}

/* Slider container */
.season-slider{
    display:flex;
    gap:15px;
    overflow:hidden;
    scroll-behavior:smooth;
    padding:10px 0;
}

/* Single card */
.season-card{
    flex:0 0 240px;              /* desktop width */
    height:280px;
    border-radius:16px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    transition:transform .3s ease;
}
.season-card:hover{
    transform:translateY(-8px);
}
.season-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.card-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background:linear-gradient(transparent,rgba(0,0,0,.85));
    color:#fff;
    padding:20px 16px 16px;
    font-weight:600;
    font-size:1.1rem;
}

/* Arrows */
.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border-radius:50%;
    border:none;
    background:#fff;
    color:#333;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 15px rgba(0,0,0,.2);
    z-index:10;
    cursor:pointer;
    font-size:1.2rem;
}
.slider-btn:hover{
    background:#f8f9fa;
    transform:translateY(-50%) scale(1.05);
}
.prev{left:-10px;}
.next{right:-10px;}






/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .season-text h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .slider-btn {
        display: none; /* swipe only */
    }
}

/* Mobile */
@media (max-width: 576px) {
    .season-section {
        padding: 40px 0;
    }

    .season-text {
        text-align: center;
        margin-bottom: 15px;
    }

    .season-text h2 {
        font-size: 22px;
    }

    .season-card {
        min-width: 200px;
        height: 260px;
    }
}




/* ======================= All Group Tour Packages=============== */
.group-tour-section {
    background: #fff;
}

/* Arrow Buttons */
.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    font-size: 18px;
    color: #000;
}

.view-all {
    color: red;
    font-weight: 600;
    text-decoration: none;
    margin-left: 8px;
    background: #f1f1f1;
    padding: 6px 12px;
    border-radius: 8px;
}



/* IMAGE */
.tour-img {
    position: relative;
}

.tour-img img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

/* BADGES */
.tour-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
}

.badge-red {
    background: #ff2d2d;
    color: #fff;
    font-size: 12px;
    padding: 4px 7px;
    border-radius: 50%;
}

.badge-light {
    background: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    color: #000;
    font-weight: 600;
}

/* BODY */
.tour-body {
    padding: 12px;
}

/* TITLE */
.tour-body h5 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #000;
}

/* MONTH TAGS */
.month-tags span {
    background: #eee;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 4px;
    margin-right: 5px;
    color: #000;
}

/* INCLUDES */
.includes {
    margin-top: 10px;
    font-size: 13px;
    color: #000;
}

.includes .icons {
    margin: 5px 0;
}

.includes i {
    color: red;
    margin-right: 8px;
}

/* PRICE */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    color: #000;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.days {
    font-size: 12px;
    color: #666;
}

/* BOOK BUTTON */
.book-btn {
    width: 100%;
    background: #ff1d1d;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 15px;
    margin: 10px 0;
    cursor: pointer;
}

.book-btn:hover {
    background: #e60000;
}

.tour-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: #dad8d8 0px 4px 6px -1px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    margin-bottom: 10px;
}





/*============= WHY KESARI SECTION =================*/
.why-kesari {
    background: #fff;
    color: #000;
}

/* CARD */
.why-card {
    padding: 25px 15px;
}

/* ICON STYLE */
.why-icon {
    font-size: 38px;
    color: #ff3b3b;
    /* Kesari red accent */
    display: inline-block;
    margin-bottom: 10px;
}

/* TITLE */
.why-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* DESCRIPTION */
.why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}








/*================= FOOTER LINKS ==================*/
.footer-links {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.footer-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links .whatsapp {
    color: #25D366;
}

.footer-links .mail {
    color: #555;
}





/* ===== STORY SECTION BG ===== */
.kesari-story {
    background: #2f4756;
    background-image: url("https://www.transparenttextures.com/patterns/snow.png");

    padding: 50px 0;
    color: #000;
}

/* ===== Card ===== */
.story-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    height: 100%;
}

/* Rating stars */
.rating {
    color: #ffa500;
    font-size: 15px;
    margin: 6px 0 10px;
}

/* Review text */
.review {
    color: #444;
    font-size: 14px;
}

/* User */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* ===== Swiper Arrows ===== */
.story-prev,
.story-next {
    width: 44px;
    height: 44px;
    background: #e7e7e7;
    border-radius: 50%;
    color: #000;
}

.story-prev::after,
.story-next::after {
    font-size: 18px;
}





/* ===== CUSTOMER SUPPORT SECTION ===== */
.customer-support {
    padding: 80px 0;
    background: #fff;
    color: #000;
}

/* Team Avatars */
.support-avatars {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.support-avatars img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Mobile Center */
@media (max-width: 991px) {
    .support-avatars {
        justify-content: center;
    }
}




/* ===== eBROCHURE SECTION ===== */
.ebrochure-section {
    padding: 80px 0;
    background: #2f4756;
    background-image: url("https://www.transparenttextures.com/patterns/snow.png");
}

/* Brochure Card */
.brochure-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.brochure-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

/* Title on image */
.brochure-card h6 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

/* Swiper arrows style */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
    height: 44px;
    background: #e7e7e7;
    border-radius: 50%;
    color: #000;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}






/* ========= AWARDS SECTION ===== */
.awards-section {
    background: #fff;
    color: #000;
}

/* Award Card */
.award-card {
    text-align: center;
    padding: 20px;
}

.award-card img {
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.award-card h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.award-card p {
    font-size: 14px;
    color: #555;
}

/* Swiper arrows */
.awards-prev,
.awards-next {
    color: #999;
}




/* ========= OUR KESARI BRANDS ===== */
.kesari-brands {
    background: #fff;
    color: #000;
}

/* Brand logos wrapper */
.brands-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Each brand */
.brand-item img {
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.3s ease;
    
}

/* Hover effect (optional, subtle) */
.brand-item img:hover {
    transform: scale(1.05);
    box-shadow: #666 0px 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .brands-wrapper {
        justify-content: center;
        gap: 30px;
    }

    .brand-item img {
        max-height: 65px;
    }
}




/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #c94e00);
}

footer {
    background: #050813;
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: #adb5bd;
    padding: 24px 0;
}

@media (max-width: 768px) {
    #hero {
        text-align: center;
        min-height: 95vh;
    }

    .search-card {
        margin-top: 1.2rem;
    }
}


/* top Button Css */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #c62828;
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    display: none;
    z-index: 999;
}




/* ===== FOOTER BASE ===== */
.kesari-footer {
    background: #1f2a37;
    color: #e5e7eb;
    font-size: 14px;
}

/* ===== ASSOCIATED SECTION ===== */
.footer-associate {
    background: #334155;
    padding: 20px 0;
}



.footer-main-logo {
    height: 45px;
}

.associate-text {
    font-weight: 600;
    margin-left: 10px;
}

.associate-logos img {
    height: 35px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    margin-right: 8px;
    margin-top: 5px;
}

/* ===== LINKS SECTION ===== */
.footer-links-section {
    padding: 50px 0;
}

.footer-links-section h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
}

.footer-links-section li {
    margin-bottom: 8px;
}

.footer-links-section a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-links-section a:hover {
    color: #ef4444;
}

/* Support */
.support-list li {
    margin-bottom: 8px;
}

/* Brochures */
.brochure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.brochure-grid img {
    width: 100%;
    border-radius: 8px;
}

/* ===== BOTTOM ===== */
.footer-bottom {
    background: #020617;
    padding: 12px;
    font-size: 13px;
}





